home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / fpkpas92.zip / SRCRTL.ZIP / RTL / DOS / MATHH.INC < prev    next >
Text File  |  1997-07-01  |  825b  |  25 lines

  1. {****************************************************************************
  2.  
  3.                           Copyright (c) 1994,97 by 
  4.                             Florian Klaempfl
  5.  
  6.  ****************************************************************************}
  7.  
  8.    { delclarations of the math routines }
  9.  
  10.     function abs(d : real) : real;
  11.     function arctan(d : real) : real;
  12.     function cos(d : real) : real;
  13.     function exp(d : real) : real;
  14.     function frac(d : real) : real;
  15.     function int(d : real) : real;
  16.     function ln(d : real) : real;
  17.     function pi : real;
  18.     function round(d : real) : longint;
  19.     function sin(d : real) : real;
  20.     function sqr(d : real) : real;
  21.     function sqrt(d : real) : real;
  22.     function sqrt(d : fixed) : fixed;
  23.     function trunc(d : real) : longint;
  24.     
  25.